home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Select (Limited Edition)
/
Computer Select.iso
/
pcc
/
v04n08
/
wrksmt.exe
/
FORM.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-06-10
|
463b
|
21 lines
@ECHO OFF
IF %1&==& GOTO NODISK
FOR %%D IN (a: A: b: B:) DO IF %1 == %%D GOTO OKAY
GOTO BADNAME
:OKAY
C:\DOS\FORMAT %1 %2 %3 %4 %5
GOTO END
:NODISK
ECHO %0 - Problem! I don't know which
ECHO disk drive to format!
ECHO Run %0 again
ECHO but please tell me
ECHO the floppy disk to format
GOTO END
:BADNAME
ECHO %0 - Problem! Can't format %1!
ECHO Run %0 again but please tell me
ECHO the floppy disk to format,
ECHO such as %0 A: or %0 B:
:END